home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 April / PCWorld_2008-04_cd.bin / temacd / pspad / pspad453inst_cz(2).exe / {app} / Script / VBScript / Pokus.vbs < prev    next >
Encoding:
Text File  |  2007-11-14  |  386 b   |  13 lines

  1. ' it will print all open files to printer
  2. const module_name  = "Projekty"         'this name must be unique !!!
  3. const module_ver   = "0.001a"            'version
  4.  
  5. sub PrintAll
  6.   echo projectFilesCount()
  7. end sub
  8.  
  9. ' name "Init" is required, its called automatically during initialization to create menu items
  10. sub Init
  11.   addMenuItem "Soubory v projektu","", "PrintAll"
  12. end sub
  13.